home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000313_news@newsmaster….columbia.edu _Mon Sep 8 11:00:21 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA07061
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 8 Sep 1997 11:00:20 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA04174
  7.     for kermit.misc@watsun; Mon, 8 Sep 1997 11:00:19 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.os.linux.misc
  11. Subject: Re: MS-DOS Kermit/DOS-Emu
  12. Date: 8 Sep 1997 15:00:15 GMT
  13. Organization: Columbia University
  14. Lines: 67
  15. Message-ID: <5v13tv$efq$1@apakabar.cc.columbia.edu>
  16. References: <TCPSMTP.17.9.8.2.14.44.2375661496.4677359@kincyb.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7636 comp.os.linux.misc:213692
  19.  
  20. In article <TCPSMTP.17.9.8.2.14.44.2375661496.4677359@kincyb.com>,
  21.  <dallasii@kincyb.com> wrote:
  22. : [I'm cross-posting this to several forums where I think it will be
  23. : appropriate for discussion.
  24. : I apologize to anyone who finds it inappropriate.]
  25. There was only one group in your Newsgroup header here, so replies will 
  26. not go to the other ones you might have posted it too, which is probably 
  27. not going to be very useful to readers of the other groups who might be
  28. interested in the results.  I'll add comp.os.linux.misc to this reply, 
  29. since that is also a good place for this query.
  30.  
  31. : Question:
  32. : 1) MS-DOS Kermit requires direct access to COM ports.
  33. Not necessarily.  It can also use the BIOS and FOSSIL interfaces.
  34.  
  35. : 2) LINUX DOS-Emu does not allow direct access to PC COM ports.
  36. I don't know; I'm sure somebody who knows about DOSEMU will speak up.
  37.  
  38. : 3) Therefore, MS-DOS Kermit cannot funtion in the LINUX DOS-Emu 
  39. :    environment?
  40. : Is there any disagreement with this conclusion?
  41. :
  42. : I've tried several variations of device file settings for DOS-Emu that
  43. : look like they might have anything to do with the COM port in question,
  44. : and always MS-DOS Kermit 3.14 locks up, apparently never getting
  45. : into running the initialization command files.
  46. : (This is with S.u.S.E. distribution, 2.0.28 Kernel as I recall,
  47. : 16550A UARTs, MS-DOS Kermit running OK under OS/2 WARP DOS emulation,
  48. : VDMs, DR DOS 5.0, MS-DOS 5.0, Caldera Open DOS 7.01, anything else anyone
  49. : needs to know?)
  50. If DOSEMU won't let you see the physical port, then MS-DOS Kermit ought to
  51. be able to operate the port through the "BIOS" (which, no doubt, is also
  52. emulated in this case).  However, performance in this case will be very
  53. poor, just as it is on a bare DOS PC when you tell it to SET PORT BIOS1 (or
  54. 2, etc), rather than SET PORT COM1 (etc), and there will be no access to
  55. modem signals and therefore no flow control, no RS-232/V.24 hangup, no
  56. carrier detection, etc.
  57.  
  58. Does DOSEMU come with a FOSSIL driver interface for the serial ports?  If
  59. so, you can use that to much better advantage -- the Fossil interface can be
  60. quite fast.  If this interface is supported by DOSEMU, just tell MS-DOS
  61. Kermit to SET PORT FOSSIL 1 (or 2, etc).
  62.  
  63. Supposing you can get serial communication going, you might still have some
  64. problems with the video -- in particular, switching video modes: text/
  65. graphics, 80/132 columns, etc.  And I have no idea what sort of access
  66. DOSEMU gives to the Linux file system, how it handles LF/CRLF mapping, etc,
  67. so you're on your own for all that.  Still, it would be interesting to hear
  68. reports on MS-DOS Kermit under DOSEMU.  I have seen it run successfully
  69. under some of the other DOS emulators, like the one for NeXTSTEP (but this
  70. one required that the serial ports be "uninstalled" from NeXTSTEP itself,
  71. and reinstalled in a special way for DOS -- I don't recall the details).
  72.  
  73. Meanwhile, of course there is also C-Kermit for Linux.  As you know, unlike
  74. MS-DOS Kermit, it is not a terminal emulator itself, but when seen through
  75. your console or Xterm (etc) window, the effect is approximately the same,
  76. perhaps minus some conveniences:
  77.  
  78.   http://www.columbia.edu/kermit/ck60.html
  79.  
  80. - Frank